home *** CD-ROM | disk | FTP | other *** search
/ Sports Illustrated for Kids - Awesome Athletes! / Sports Illustrated for Kids - Awesome Athletes!.iso / install / catalog.exe / catalog.DXR / 00233_OrderList.ls < prev    next >
Encoding:
Text File  |  1995-11-27  |  1.1 KB  |  39 lines

  1. on mouseUp
  2.   if (the mouseLine >= 1) and (the mouseLine <= 7) then
  3.     if the mouseLine = 1 then
  4.       put "Bookstore" into field "purchase field"
  5.       killOptionsList()
  6.     else
  7.       if the mouseLine = 2 then
  8.         put "Computer Superstore" into field "purchase field"
  9.         killOptionsList()
  10.       else
  11.         if the mouseLine = 3 then
  12.           put "Mail Order" into field "purchase field"
  13.           killOptionsList()
  14.         else
  15.           if the mouseLine = 4 then
  16.             put "Mass Merchant" into field "purchase field"
  17.             killOptionsList()
  18.           else
  19.             if the mouseLine = 5 then
  20.               put "Software Store" into field "purchase field"
  21.               killOptionsList()
  22.             else
  23.               if the mouseLine = 6 then
  24.                 put "Specialty Store" into field "purchase field"
  25.                 killOptionsList()
  26.               else
  27.                 if the mouseLine = 7 then
  28.                   put "Other" into field "purchase field"
  29.                   killOptionsList()
  30.                 end if
  31.               end if
  32.             end if
  33.           end if
  34.         end if
  35.       end if
  36.     end if
  37.   end if
  38. end
  39.